home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 5 / CU Amiga Magazine's Super CD-ROM 05 (1996)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1996-12].iso / cucd / programming / perl / lib / perl5 / auto / posix / localtime.al < prev    next >
Encoding:
Text File  |  1996-09-10  |  174 b   |  10 lines

  1. # NOTE: Derived from ../../lib/POSIX.pm.  Changes made here will be lost.
  2. package POSIX;
  3.  
  4. sub localtime {
  5.     usage "localtime(time)" if @_ != 1;
  6.     localtime($_[0]);
  7. }
  8.  
  9. 1;
  10.